home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / pcboard / aadd118b.zip / AUTOADD.DOC next >
Text File  |  1996-04-02  |  27KB  |  646 lines

  1.  
  2.  
  3.                              AutoAdd V1.18
  4.                 Copyright (C) 1995, 1996 David Blagburn
  5.                           All rights reserved
  6.  
  7.     What is AutoAdd?  Well, AutoAdd is a bridge between Allfix and
  8.   PCBoard.  Allfix allows automatic additions of new file areas but has
  9.   no way to let your BBS software (and consequently, your users) about
  10.   the new file area.  This is where AutoAdd comes in.  AutoAdd will:
  11.  
  12.      * Detect auto-added file echos.
  13.      * Add the new file areas to the BBS.
  14.      * Copy the FILES.BBS made by Allfix to a compatible format.
  15.      * Update Allfix (when registered) so that it will recognize the new
  16.        addition to your BBS, eliminating the need to run FCOMP.
  17.      * Update Allfix (when registered) with the description pulled from
  18.        FILEBONE.NA or FILEBONE.NO, eliminating the need to run FIXUTIL
  19.        Describe.
  20.      * Supports PCBoard 15.x, Renegade (4.17 or later), Maximus 3.0,
  21.        Telegard 3.0, T.A.G 2.7, Spitfire, LoraBBS 2.40, ProBoard, and
  22.        RemoteAccess 2.0x and 2.50.
  23.  
  24.    *** NOTICE: REQUIRES ALLFIX 4.32 OR ALLFIX/2 1.XX (REGISTERED) ***
  25.    Auto-adding file areas is a registered feature of Allfix.  I have no
  26.    control over this.
  27.  
  28.  
  29.   SETUP
  30.   -----
  31.     Put AUTOADD.EXE just about anywhere you want to, as long as you can
  32.   call it from a batch file.  
  33.  
  34.     AutoAdd requires certain switches and flags in Allfix to be setup up
  35.   in a compatible manner.  If you can not or are unwilling to make these
  36.   changes, then AutoAdd is not for you.
  37.  
  38.    Asetup switches that must be set:
  39.      In Asetup | Group Manager
  40.        All groups (that you expect to have areas added to) must have
  41.        Unique set to Yes.  File areas with Unique set to No will not be
  42.        added to you BBS.  Passthru areas are ignored.
  43.  
  44.    Because the setup is somewhat different for each BBS type, each
  45.  supported BBS type will be covered individually.
  46.  
  47.  
  48.   USING AUTOADD
  49.   -------------
  50.     AutoAdd is designed to be run from a batch file, but can be run
  51.   anytime.  AutoAdd has the capability to determine your BBS type.
  52.  
  53.     Edit your AUTOADD.CFG to suit your system.  AUTOADD.CFG *must*
  54.   reside in the same directory as AUTOADD.EXE.  A sample configuration
  55.   file is included for each BBS type supported.
  56.  
  57.     The call to AutoAdd is: <path>\AUTOADD
  58.  
  59.     AutoAdd will exit with an errorlevel of 1 if any file areas were
  60.   auto-added (if registered).  This may require editing for your
  61.   system.
  62.  
  63.  
  64.   THE BATCH FILE
  65.   --------------
  66.     The way I call AutoAdd:
  67.     (snipped from my MAINT.001 batch file)
  68.  
  69.     REM CHECK FOR TIC'S. RUN ALLFIX IF ANY
  70.     IF NOT EXIST D:\PCB\FIDO\INBOUND *.TIC GOTO PASSAF
  71.     D:
  72.     CD \ALLFIX
  73.     ALLFIX File -NoCrc
  74.     REM Run AUTOADD
  75.     D:\PCB\AUTOADD
  76.     IF NOT ERRORLEVEL 1 GOTO PASSAF
  77.     REM What ever you want here
  78.     REM This line is for PCBoard
  79.     MAKEIDX D:\PCB\GEN\INDEX1.PTH D:\PCB\GEN\INDEX1.IDX
  80.  
  81.     :PASSAFF
  82.     ALLFIX Announce
  83.  
  84.  
  85.   AUTOADD.CFG
  86.   -----------
  87.     AUTOADD.CFG serves two purposes.  It is used in conjunction with your
  88.   key file (once you get you key file), and to define the necessary
  89.   information AutoAdd needs to work with your particular setup.  A great
  90.   deal of flexibility can be used here.
  91.  
  92.     The first two lines contain the name you used to register AutoAdd
  93.   (case sensitive) and your registration code, in that order.  The
  94.   remaining lines are either comments or configuration options.  Please
  95.   see the explanation below for your BBS type.  A sample configuration
  96.   file (individually archived) is provided for each supported BBS type.
  97.   There can be NO blank lines, nor should any line begin with a space.
  98.  
  99.    - Comment lines.
  100.          There can be an unlimited number of comment lines (well, as long
  101.        as you have disk space).  Each comment line must have a semicolon
  102.        (;) as the first character on the line.  They are also limited to
  103.        250 total characters per line (include the semicolon).
  104.  
  105.    - Configuration lines.
  106.          Each configuration line consists of a 4 letter key and one or
  107.        more fields.  Each field is separated by one or more spaces.
  108.        Configuration lines my appear in any order.  Unless specified,
  109.        only one occurrence (the last one) of each line will be honored.
  110.        Configuration lines are also limited to 250 total characters.
  111.  
  112.     Configuration lines give you a great deal of flexibility in
  113.   defining what AutoAdd is to do and how it is to do it.  Some are
  114.   common for all BBS types, while others define the defaults you would
  115.   like for such things as security levels, passwords, directory paths,
  116.   etc.
  117.  
  118.    - Configuration lines common to all BBS types.
  119.  
  120.      Key   Description
  121.      ---   -----------
  122.      AFIX  This line has only one field, the path to your Allfix
  123.            directory.
  124.  
  125.      LOGG  This line has only one field, the path where you would like
  126.            AUTOADD.LOG written.  If not present, AUTOADD.LOG will be
  127.            stored in the same directory as AUTOADD.EXE.  If a filename
  128.            is specified, that file will be used.
  129.  
  130.    - Configuration lines specific to BBS types.
  131.  
  132.  
  133.      PCBOARD 15.x
  134.      ------------
  135.      Key   Description
  136.      ---   -----------
  137.      CNAM  This line has one field, the path and name you entered in
  138.            PCBSETUP->File Locations->System Files & Directories->Name/Loc
  139.            of Conference Data.  This is usually x:\PCB\MAIN\CNAMES, where
  140.            x is the drive letter.
  141.  
  142.      DIRP  This line has one field, the path you would like to store the
  143.            new DIRx style file in.  When an area is auto-added, Allfix
  144.            creates a FILES.BBS file in the same path the files are
  145.            stored in.  AutoAdd will always make a new file from the
  146.            FILES.BBS, naming it the same as the AreaTag for the new file
  147.            area and inserting the standard PCB DIRx header lines.  This
  148.            line will allow you to specify another directory to store the
  149.            DIRx file created by AutoAdd.  If not used, the new file will
  150.            be created in the same directory as the FILES.BBS file.
  151.  
  152.      CONF  This is the line that gives AutoAdd it's power.  There can be
  153.            up to 256 of these line.  The CONF line contains several
  154.            fields.  Each field must be present and in the correct order.
  155.  
  156.            - field 1: PCBoard conference (0 - 65567)
  157.                       This is the PCBoard conference you would like to
  158.                       be updated for an Allfix defined group.
  159.  
  160.            - field 2: group(s) (0 - 255) (79 characters max)
  161.                       AutoAdd allows you to assign a conference to each
  162.                       file echo group defined in Allfix.  This gives you
  163.                       the flexibility to specify which FILEBONE.NA style
  164.                       file goes with each file echo group and which
  165.                       PCBoard conference files (DIR.LST and DLPATH.LST)
  166.                       to update.
  167.  
  168.                       More than one group can be specified by separating each
  169.                       group by a semicolon (;).  Ex. 3;5;22
  170.  
  171.                       A range can be specified by separating the first and
  172.                       last group in the range by a dash (-). Ex. 23-255
  173.                       A combination can also be used. Ex 0;3-5;9-15
  174.  
  175.            - field 3: Path and name of the FILEBONE.NA style file to use
  176.                       for the group(s) defined in field 2.  The file
  177.                       defined here will be searched for the AreaTag of
  178.                       the newly added area.  The description for the
  179.                       auto-added area as defined in the FILEBONE.NA
  180.                       style file is then used to update file area
  181.                       descriptions in PCBoard and Allfix.
  182.  
  183.            - field 4: Path and name of the index.pth file to use.  This
  184.                       field allows you to define whether to update
  185.                       DLPATH.LST or a text file for use with MAKEIDX.
  186.                       Enter "NONE" (without quotes) not update anything.
  187.                       Leave blank to use the DLPATH.LST for the
  188.                       specified conference.
  189.  
  190.  
  191.      RENEGADE (versions later than 4.16)
  192.      -----------------------------------
  193.      Key   Description
  194.      ---   -----------
  195.      DATA  This line has one field, the path to where FBASES.DAT and
  196.            EXTENDED.DAT are stored.  This is usually x:\RENEGADE\DATA,
  197.            where x is the drive letter.
  198.  
  199.      FBON  This line has one field, the path and name of a FILEBONE.NA
  200.            style file.  There can be more than one FBON line.  Each will
  201.            be searched, in order, for the AreaTag of the auto-added file
  202.            area.  The description for the auto-added area as defined in
  203.            the FILEBONE.NA style file is then used to update file area
  204.            descriptions in Renegade and Allfix.
  205.  
  206.      DEFN  This line has multiple fields and contains the defaults for
  207.            the newly added file area.  This line is highly formatted. Use
  208.            care when you edit it.
  209.  
  210.            - field 1: The path to use as the upload directory.  Enter
  211.                       "SAME" (without quotes) if you wish it to be the
  212.                       same as the download path.  40 characters max
  213.                       (including trailing "\".  This is a Renegade
  214.                       limit).
  215.  
  216.            - field 2: Access, max files, archiver, and flags.  Each
  217.                       subfield is separated by a comma.  All subfields
  218.                       must be present.  If a subfield is not used, the
  219.                       comma must still be used as a place holder.
  220.  
  221.             - subfield 1: Password.  12 characters max.
  222.  
  223.             - subfield 2: Access (ACS).  20 characters max.
  224.  
  225.             - subfield 3: Upload access (ULACS).  20 characters max.
  226.  
  227.             - subfield 4: Download access (DLACS).  20 characters max.
  228.  
  229.             - subfield 5: Maximum files allowed in this area. 1-65635.
  230.  
  231.             - subfield 6: Archiver.  0 thru number of archivers defined in
  232.                           Renegade.  Warning: validity of this field is
  233.                           not checked.  8 is the highest value Renegade
  234.                           allows.  0 = None defined.
  235.  
  236.             - subfield 7: Archive Comment.  1 - 3 as setup in Renegade.
  237.  
  238.             - subfield 8: Credits required for download for each file.
  239.                           This will be used in the new *.DIR file.
  240.  
  241.             - subfield 9: Flags: C - CD-ROM
  242.                                  G - Gif Specs
  243.                                  D - Date Uploaded
  244.                                  S - Show Uploader Name
  245.                                  I - *.DIR in DLPATH
  246.                                  U - Unhidden
  247.                                  N - No Ratio
  248.                           The I flag is honored by AutoAdd.
  249.  
  250.  
  251.      MAXIMUS 3.X
  252.      -----------
  253.      Key   Description
  254.      ---   -----------
  255.      DATA  This line has one field, the path to MAX.PRM.  This is
  256.            usually x:\MAX\, where x is the drive letter.
  257.  
  258.      FBON  This line has one field, the path and name of a FILEBONE.NA
  259.            style file.  There can be more than on FBON line.  Each file
  260.            will be searched, in order, for the AreaTag of the auto-added
  261.            file area.  The description for the auto-added area as
  262.            defined in the FILEBONE.NA style file is then used to update
  263.            file area descriptions in Maximus and Allfix.
  264.  
  265.      DEFN  This line has two fields, the default upload path and access
  266.            name.
  267.  
  268.            - field 1: The path to use as the upload directory.  No check
  269.                       is made for the validity of the path.
  270.  
  271.            - field 2: Access name (level) for this file area.  Enter the
  272.                       <name> for the access level as defined in
  273.                       ACCESS.CTL (Sysop, Demoted, etc).
  274.  
  275.  
  276.      TELEGARD 3.0
  277.      ------------
  278.      Key   Description
  279.      ---   -----------
  280.      DATA  This line has one field, the path to CONFIG.TG.  This is
  281.            usually x:\TELEGARD\, where x is the drive letter.
  282.  
  283.      FBON  This line has one field, the path and name of a FILEBONE.NA
  284.            style file.  There can be more than on FBON line.  Each file
  285.            will be searched, in order, for the AreaTag of the auto-added
  286.            file area.  The description for the auto-added area as
  287.            defined in the FILEBONE.NA style file is then used to update
  288.            file area descriptions in Telegard and Allfix.
  289.  
  290.      DEFN  This line has one field, but many subfields.  It contains
  291.            the defaults to use when defining the new file area in
  292.            Telegard.
  293.  
  294.           - field 1: Archiver, accesses, flags.  Each subfield is
  295.             separated by a comma.  Even if a subfield is not used, the
  296.             comma must be present as a place holder.
  297.  
  298.             - subfield 1: Archiver (ZIP, ARJ, ARC, ZOO, etc).
  299.  
  300.             - subfield 2: Sysop access.
  301.  
  302.             - subfield 3: Access required to view the file list.
  303.  
  304.             - subfield 4: Access required to see Uploader name.
  305.  
  306.             - subfield 5: Access required to upload files.
  307.  
  308.             - subfield 6: Access required to download files.
  309.  
  310.             - subfield 7: Scan type - 0 - default on
  311.                                       1 - default off
  312.                                       2 - always.
  313.  
  314.             - subfield 8: Flags - N - Noratio
  315.                                   V - Visible
  316.                                   G - GifSpecs
  317.  
  318.  
  319.      SPITFIRE
  320.      --------
  321.      Key   Description
  322.      ---   -----------
  323.      DATA  This line has one field, the path to SFFAREA.DAT.  This is
  324.            usually x:\SPITFIRE\, where x is the drive letter.
  325.  
  326.      FBON  This line has one field, the path and name of a FILEBONE.NA
  327.            style file.  There can be more than on FBON line.  Each file
  328.            will be searched, in order, for the AreaTag of the auto-added
  329.            file area.  The description for the auto-added area as
  330.            defined in the FILEBONE.NA style file is then used to update
  331.            file area descriptions in Spitfire and Allfix.
  332.  
  333.      DEFN  This has three fields.  The first two fields must be present,
  334.            while the last field my be left blank to use the defaults.
  335.  
  336.           - field 1: Upload path.  If you would like the upload path and
  337.                      download path to be the same, enter "SAME" (without
  338.                      the quotes).  Maximum of 60 characters, including
  339.                      the trailing "\".
  340.  
  341.           - field 2: File area access level. 0 - 255.
  342.  
  343.           - field 3: File area flags - E - User must have security level
  344.                                            equal to file area security
  345.                                            to upload or download.
  346.                                            Default is Equal to or
  347.                                            greater than.
  348.                                        S - Allow users with less
  349.                                            security to view files list.
  350.                                            Default is not to allow
  351.                                            viewing of the files list.
  352.  
  353.  
  354.      PROBOARD
  355.      --------
  356.      Key   Description
  357.      ---   -----------
  358.      DATA  This line has one field, the path to FILECFG.PRO.  This is
  359.            usually x:\PB\, where x is the drive letter.
  360.  
  361.      FBON  This line has one field, the path and name of a FILEBONE.NA
  362.            style file.  There can be more than on FBON line.  Each file
  363.            will be searched, in order, for the AreaTag of the auto-added
  364.            file area.  The description for the auto-added area as
  365.            defined in the FILEBONE.NA style file is then used to update
  366.            file area descriptions in ProBoard and Allfix.
  367.  
  368.      DEFN  This line has several fields, each seperated by a comma.  You
  369.            may define the defaults to use for the new file area here.
  370.  
  371.          - field 1: File area security level
  372.  
  373.          - field 2: File area access flags (A thru Z, 1 thru 6). Order
  374.                     does not matter nor does case.  You can make neat
  375.                     words here, like AutoAdd115.  In this case flags
  376.                     ADOTU15 would be set.
  377.          - field 3: Maximum files allowed to DL.
  378.  
  379.          - field 4: Maximum kilobytes allowed to DL.
  380.  
  381.          - field 5: Do NOT show in TOPS.PB.  T, true, True, TRUE all mean
  382.                     "No. Do not show in TOPS.PB".  Only the first letter
  383.                     is checked.
  384.  
  385.          - field 6: Free files. True or False (T or F). Same method as
  386.                     field 5.  Only the first letter is checked.
  387.  
  388.          - field 7: Minimum age. 0 - 1000.  Well, actually the range is
  389.                     much greater, but I think the average life span is
  390.                     well covered.
  391.  
  392.          - field 8: Date format. 0 - MM/DD/YY
  393.                                  1 - DD/MM/YY
  394.                                  2 - YY/MM/DD
  395.  
  396.          - field 9: Groups this area belongs to.  "*" = All groups.
  397.                     Otherwise, up to 4 groups may be listed, seperated by
  398.                     a comma.
  399.  
  400.  
  401.      TAG 2.7
  402.      -------
  403.      Key   Description
  404.      ---   -----------
  405.      DATA  This line has one field, the path to FBOARDS.DAT.  This is
  406.            usually x:\TAG\DFILES\, where x is the drive letter.
  407.  
  408.      FBON  This line has one field, the path and name of a FILEBONE.NA
  409.            style file.  There can be more than on FBON line.  Each file
  410.            will be searched, in order, for the AreaTag of the auto-added
  411.            file area.  The description for the auto-added area as
  412.            defined in the FILEBONE.NA style file is then used to update
  413.            file area descriptions in TAG and Allfix.
  414.  
  415.      DEFN  This line has several fields, each seperated by a comma.  You
  416.            may define the defaults to use for the new file area here.
  417.  
  418.           - field 1: Password. 15 characters max.
  419.  
  420.           - field 2: Access. 0 - 255.
  421.  
  422.           - field 3: Access level to see Uploader name. 0-255.
  423.  
  424.           - field 4: No Ratio flag. "True" or "T" for "Yes, no ratio.",
  425.                      or  "False" or "F" for "No, ratio active."
  426.  
  427.           - field 5: Group this file area belongs to. 0-127.
  428.  
  429.           - field 6: AR flag. @..Z. Only one flag allowed.
  430.  
  431.           - field 7: Use "FILES" as the filename for the files list.
  432.                      "True" or "T", "False" of "F".  Defaults to "False.
  433.                      Do not use FILES as the filename for the files
  434.                      list."
  435.  
  436.            All fields must be seperated by a comma.  All fields must be
  437.            present.  This means that even if a field is not used, a comma
  438.            must be used as a place holder.
  439.  
  440.  
  441.      LORABBS 2.40
  442.      ------------
  443.      Key   Description
  444.      ---   -----------
  445.      DATA  This line has one field, the path to SYSFILE.DAT.  This is
  446.            usually x:\LORA\, where x is the drive letter.
  447.  
  448.      FBON  This line has one field, the path and name of a FILEBONE.NA
  449.            style file.  There can be more than on FBON line.  Each file
  450.            will be searched, in order, for the AreaTag of the auto-added
  451.            file area.  The description for the auto-added area as
  452.            defined in the FILEBONE.NA style file is then used to update
  453.            file area descriptions in LoraBBS and Allfix.
  454.  
  455.      DEFN  This line has several fields, each seperated by a comma.  You
  456.            may define the defaults to use for the new file area here.
  457.  
  458.           - field 1: Minimum area number.  This is the lowest area
  459.                      number AutoAdd will use when adding new file areas.
  460.                      The new area number will always be the highest in
  461.                      the file area database.
  462.  
  463.           - field 2: Upload path.  This is a required field.
  464.  
  465.           - field 3: Free files area, True (T) or False (F).
  466.  
  467.           - field 4: Exclude this area from global searchs, True or
  468.                      False.
  469.  
  470.           - field 5: Minimum level required for this area. 1 - Twit,
  471.                                                            2 - Disgrace,
  472.                                                            3 - Limited,
  473.                                                            ...,
  474.                                                           13 - Hidden
  475.  
  476.           - field 6: Access flags. 0-9 and A-V.  Order does not matter.
  477.  
  478.           - field 7: File area access level. 1 - Twit.....
  479.  
  480.           - field 8: File area flags. 0-9 and A-V.
  481.  
  482.           - field 9: Download access. 1 - Twit.....
  483.  
  484.           - field 10: Download flags. 0-9 and A-V.
  485.  
  486.           - field 11: Upload access. 1 - Twit....
  487.  
  488.           - field 12: Upload flags. 0-9 and A-V.
  489.  
  490.           All fields must be seperated by a comma.  All fields must be
  491.         present.  This means that even if a field is not used, a comma
  492.         must be used as a place holder.  Fields 5 - 12 are optional.
  493.         They will all default to Twit privilages and no flags.  No
  494.         fields may be skipped.  If not used or you desire the default,
  495.         you must use a comma as a place holder for fields preceding the
  496.         field you do use.
  497.  
  498.  
  499.      REMOTEACCESS 2.0x and 2.50
  500.      --------------------------
  501.      Key   Description
  502.      ---   -----------
  503.      DATA  This line has one field, the path to FILES.RA.  This is
  504.            usually x:\RA\, where x is the drive letter.
  505.  
  506.      FBON  This line has one field, the path and name of a FILEBONE.NA
  507.            style file.  There can be more than on FBON line.  Each file
  508.            will be searched, in order, for the AreaTag of the auto-added
  509.            file area.  The description for the auto-added area as
  510.            defined in the FILEBONE.NA style file is then used to update
  511.            file area descriptions in RemoteAccess and Allfix.
  512.  
  513.      DEF1  New file area defaults.  All fields must be present.
  514.  
  515.           - field  1: Kill files after x days if no DL.
  516.  
  517.           - field  2: Kill files after x days from file date.
  518.  
  519.           - field  3: Password for this file area.
  520.  
  521.           - field  4: Minimum age for access to this area.
  522.  
  523.           - field  5: Convert all files to this extention (ZIP, ARJ, etc).
  524.  
  525.           - field  6: Default Cost.
  526.  
  527.           - field  7: Upload Area (not check for validty). Defaults to
  528.                       same as the new area.
  529.           - field  8: Group this area should be in.
  530.  
  531.           - field  9: Include this area in file scans (Yes or No).
  532.  
  533.           - field 10: Include this area in dupe checks (Yes or No).
  534.  
  535.           - field 11: Allow long descriptions (Yes or No).
  536.  
  537.           - field 12: Free area (Yes or No).
  538.  
  539.           - field 13: Allow files Not in FDB to be downloaded (Yes or No).
  540.  
  541.           - field 14: Allow users to assign file password to files (Yes
  542.                       or No).
  543.  
  544.           - field 15: Scan this area for new ULs (Yes or No).
  545.  
  546.           - field 16: Include this area is in all Groups (Yes or No).
  547.  
  548.           - field 17: Alt Group 1.
  549.  
  550.           - field 18: Alt Group 2.
  551.  
  552.           - field 19: Alt Group 3.
  553.  
  554.           All fields must be seperated by a comma.  All fields must be
  555.         present.  This means that even if a field is not used, a comma
  556.         must be used as a place holder.
  557.  
  558.      DEF2  New file area Security levels and flags.
  559.  
  560.           - field  1: Upload Security Level.
  561.  
  562.           - field  2: Upload FlagsA.  - = Don't care
  563.                                       X = Flag must be set
  564.                                       O = (letter) Flag must NOT be set
  565.  
  566.           - field  3: Upload FlagsB.
  567.  
  568.           - field  4: Upload FlagsC.
  569.  
  570.           - field  5: Upload FlagsD.
  571.  
  572.           - field  6: Download Security Level.
  573.  
  574.           - field  7: Download FlagsA.
  575.  
  576.           - field  8: Download FlagsB.
  577.  
  578.           - field  9: Download FlagsC.
  579.  
  580.           - field 10: Download FlagsD.
  581.  
  582.           - field 11: List files Secutity Level.
  583.  
  584.           - field 12: List FlagsA.
  585.  
  586.           - field 13: List FlagsB.
  587.  
  588.           - field 14: List FlagsC.
  589.  
  590.           - field 15: List FlagsD.
  591.  
  592.           All fields must be seperated by a comma.  All fields must be
  593.         present.  This means that even if a field is not used, a comma
  594.         must be used as a place holder.
  595.  
  596.  
  597.   REGISTRATION
  598.   ------------
  599.     Registration is $5.00 (US).  Registration will enable the updating of
  600.   Allfix.  See AUTOADD.REG for further information.
  601.  
  602.  
  603.   EVALUATION KEY
  604.   --------------
  605.     A 30 day evaluation key can be obtained by calling the support BBS
  606.   (The Spy's Nest, see below), logging on with the name and password of
  607.   AUTOADD.  After logging on, you should be in Conference 4.  Type EVAL
  608.   and follow the on-screen instructions.
  609.  
  610.  
  611.   CONTACTING THE AUTHOR
  612.   ---------------------
  613.     I can be reached at:
  614.          The Spy's Nest 1-904-458-0982/1-904-457-9111 (V.34/VFC)
  615.          FIDO 1:3612/386 (or 1:3612/386.1)
  616.     I also hang out in ALLFIX_HELP and supported BBS type support echos.
  617.  
  618.  
  619.   WARRANTY & DISCLAIMER
  620.   ---------------------
  621.     There are no warranties, express or implied, for unregistered copies
  622.   of AutoAdd.  The author will NOT be held liable for any direct,
  623.   indirect, incidental, or consequential damage resulting from the use
  624.   of this program.  Your use of this program constitutes your AGREEMENT
  625.   to this disclaimer and your release of the author from any form of
  626.   liability.
  627.  
  628.     Registered copies of AutoAdd are warranted to perform as described
  629.   in this documentation.  In the event AutoAdd does not perform as
  630.   described, then the author will elect to either rectify the problem or
  631.   refund the amount of the registration paid, provided notification is
  632.   received within 30 days of registration.
  633.  
  634.     All brand and product names are Copyrighted (C) material, Trademarks
  635.   (tm) or Registered (R) Trademarks of their respective holders:
  636.   Allfix                        Harald Harmes
  637.   PCBoard                       Clark Development Co.
  638.   Renegade                      Cott Lang
  639.   Maximus                       Lanius Corporation
  640.   Telegard                      Tim Strike
  641.   SpitFire                      Buffalo Creek Software
  642.   ProBoard                      Philippe Leybaert
  643.   LoraBBS                       Marco Maccaferri
  644.   RemoteAccess                  Wantree Development & Andrew Milner
  645.   T.A.G.                        The T.A.G Team
  646.